home *** CD-ROM | disk | FTP | other *** search
- ;---------------------------------------------------------
- ; iFTP script for WEB SITE
- ;---------------------------------------------------------
-
- ;DEBUG ON
-
- log Logging into FTP WEBSITE site.....
- OPEN website
- if not success goto error
-
- ;----------------------------------------------------------
- ; check for local files to send to ftp site
- ;----------------------------------------------------------
- LABEL step1
-
- log Step 1: Check for local files to send...
- if not exist websend\*.* goto success
- put websend\*.* /kill
- if not success goto error
- goto success
-
- ;---------------------------------------------------------------
- LABEL success
- log Successful session!
- goto end
-
- ;---------------------------------------------------------------
- LABEL error
- WriteError
- goto end
-
- ;---------------------------------------------------------------
- LABEL end
-